.SILENT

# compilers:
CC = wcc386.exe
ASM = tasm.exe

# options to use:
CFLAGS = -5r -s -7 -fp5 -onaSmir
AFLAGS =

# explicit rules:
.c.obj
  $(CC) $(CFLAGS) $<

.asm.obj
  $(ASM) $(AFLAGS) $<

# tracer.obj: tracer.c traceobj.h scenes.h

tracer.exe: main.obj bitmap.obj bitmap_a.obj palettes.obj plasma_a.obj texture.obj textur_a.obj tracer.obj video.obj video_a.obj
  wlink @main.lnk
